home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Embed / Sources / Embed.hpp < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.4 KB  |  82 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Embed.hpp
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Author:                M.Boetcher
  7. //
  8. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef EMBED_HPP
  13. #define EMBED_HPP
  14.  
  15. #if !defined(FW_BUILD_MAC)
  16.  
  17. // ----- Foundation Includes -----
  18.  
  19. #include "FWCommon.h"
  20. #include "FWTaskG.h"
  21. #include "FWDebug.h"
  22. #include "FWExcLib.h"
  23. #include "FWCollec.h"
  24. #include "FWRefCnt.h"
  25. #include "FWMemory.h"
  26. #include "FWNotifn.h"
  27. #include "FWRunTyp.h"
  28. #include "FWStream.h"
  29. #include "FWString.h"
  30.  
  31. // ----- OS Includes -----
  32.  
  33. #ifndef FWPOINT_H
  34. #include "FWPoint.h"
  35. #endif
  36.  
  37. #ifndef FWRECT_H
  38. #include "FWRect.h"
  39. #endif
  40.  
  41. #ifndef FWODGEOM_H
  42. #include "FWODGeom.h"
  43. #endif
  44.  
  45. // ----- OpenDoc Includes -----
  46.  
  47. #ifndef FWODTYPS_H
  48. #include "FWODTyps.h"
  49. #endif
  50.  
  51. #ifndef SOM_ODDragAndDrop_xh
  52. #include <DragDrp.xh>
  53. #endif
  54.  
  55. #ifndef SOM_Module_OpenDoc_StdProps_defined
  56. #include <StdProps.xh>
  57. #endif
  58.  
  59. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  60. #include <StdTypes.xh>
  61. #endif
  62.  
  63. #ifndef SOM_ODStorageUnit_xh
  64. #include <StorageU.xh>
  65. #endif
  66.  
  67. #ifndef SOM_ODShape_xh
  68. #include <Shape.xh>
  69. #endif
  70.  
  71. #ifndef SOM_ODTransform_xh
  72. #include <Trnsform.xh>
  73. #endif
  74.  
  75. #ifndef SOM_ODSession_xh
  76. #include <ODSessn.xh>
  77. #endif
  78.  
  79. #endif
  80.  
  81. #endif // EMBED_HPP
  82.